home *** CD-ROM | disk | FTP | other *** search
/ Imagine! / Imagine (Wayzata Technology) (1995).iso / mac / Windows / AMazing.dir / 00587_Script_587 < prev    next >
Text File  |  1995-08-24  |  269b  |  20 lines

  1. --Exit
  2. on mouseUp
  3.   set random to 3
  4.   if random(3) = 1 then
  5.     go "M12B"
  6.   else
  7.     if random(3) = 2 then
  8.       go "N16A"
  9.     else
  10.       if random(3) = 3 then
  11.         go "M8A"
  12.       end if
  13.     end if
  14.   end if
  15. end
  16.  
  17. on exitFrame
  18.   go to the frame
  19. end
  20.